PDF Plugin for Xojo

Page.CurveTo2 Method (console safe)

Appends a Bézier curve to the current path using the current point and (x2, y2) and (x3, y3) as control points. Then, the current point is set to (x3, y3).

CurveTo2(
   x2 as Single,
   y2 as Single,
   x3 as Single,
   y3 as Single)

Parameters

x2
Second control point (x coord) (there is no first)
y2
Second control point (y coord) (there is no first)
x3
Third control point (x coord)
y3
Third control point (y coord)

Remarks

See Also

Page Class